home *** CD-ROM | disk | FTP | other *** search
/ Delphi Magazine Collection 2001 / Delphi Magazine Collection 20001 (2001).iso / DISKS / Issue33 / undo / TextWin.dfm / TextWin.txt
Encoding:
Text File  |  1998-02-17  |  1.0 KB  |  54 lines

  1. object TextWindow: TTextWindow
  2.   Left = 350
  3.   Top = 247
  4.   Width = 429
  5.   Height = 215
  6.   Caption = 'Text window'
  7.   Font.Color = clWindowText
  8.   Font.Height = -16
  9.   Font.Name = 'System'
  10.   Font.Style = []
  11.   FormStyle = fsMDIChild
  12.   PixelsPerInch = 120
  13.   Position = poDefault
  14.   Visible = True
  15.   OnClose = FormClose
  16.   OnCreate = FormCreate
  17.   TextHeight = 20
  18.   object Memo1: TMemo
  19.     Left = 0
  20.     Top = 0
  21.     Width = 421
  22.     Height = 188
  23.     Align = alClient
  24.     PopupMenu = PopupMenu1
  25.     TabOrder = 0
  26.     WantTabs = True
  27.     OnKeyDown = Memo1KeyDown
  28.     OnMouseDown = Memo1MouseDown
  29.   end
  30.   object FontDialog1: TFontDialog
  31.     Font.Color = clWindowText
  32.     Font.Height = -13
  33.     Font.Name = 'MS Sans Serif'
  34.     Font.Style = []
  35.     MinFontSize = 0
  36.     MaxFontSize = 0
  37.     Left = 328
  38.     Top = 32
  39.   end
  40.   object PopupMenu1: TPopupMenu
  41.     Left = 88
  42.     Top = 40
  43.     object Cut1: TMenuItem
  44.       Caption = 'Cu&t'
  45.     end
  46.     object Copy1: TMenuItem
  47.       Caption = '&Copy'
  48.     end
  49.     object Paste1: TMenuItem
  50.       Caption = '&Paste'
  51.     end
  52.   end
  53. end
  54.